home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / s-stalib.ads < prev    next >
Text File  |  1996-01-30  |  3KB  |  56 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --              S Y S T E M . S T A N D A R D _ L I B R A R Y               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.7 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  This is a dummy pakage that simply contains with references to the set of
  27. --  packages that are required to be part of every Ada program. A specialized
  28. --  mechanism is required to ensure that these are loaded, since it may be the
  29. --  case in some programs that the only references to these required packages
  30. --  are from C code or from code generated directly by Gigi, an in both cases
  31. --  the binder is not aware of such references.
  32.  
  33. --  The binder unconditionally includes s-stalib.ali, which ensures that this
  34. --  package and the packages it references are included in all Ada programs.
  35.  
  36. with System.Tasking_Soft_Links;
  37. --  Referenced directly from generated code
  38.  
  39. with System.Task_Specific_Data;
  40. --  Referenced directly from exception handling routines
  41.  
  42. with System;
  43. --  Referenced from System.Secondary_Stack
  44.  
  45. with System.Storage_Elements;
  46. --  Referenced from System.Secondary_Stack
  47.  
  48. with Unchecked_Conversion;
  49. --  Referenced from System.Secondary_Stack and System.Task_Specific_Data
  50.  
  51. with Unchecked_Deallocation;
  52. --  Referenced from System.Secondary_Stack and System.Task_Specific_Data
  53.  
  54. package System.Standard_Library is
  55. end System.Standard_Library;
  56.